/-app
/-app/layout
/-app/tests
TestCase.ts
TestPage.ts
Application.ts
/-boot
/-imports
/-storage ...
/-storage/attached ...
/-storage/attached/api ...
LoadStorage.ts
DetectStorage.ts
LoadStorageRecipient.ts
UpdateStorage.ts
/-storage/attached/indexedDB
DetectStorage.ts
FileData.ts
LoadStorage.ts
MetadataData.ts
UpdateStorage.ts
functions.ts
/-storage/attached/localStorage
DetectStorage.ts
LoadStorage.ts
UpdateStorage.ts
/-storage/attached/webSQL
/-tests
/-tests/storage
/-tests/storage/attached
AttachedStorageTests.ts
IndexedDBStorageTests.ts
LocalStorageStorageTests.ts
WebSQLStorageTests.ts
_sampleTests.ts
/-typings
stringUtils.ts
teapo.html
1
module teapo.storage.attached { 
2
 
3
  export interface UpdateStorage { 
4
 
5
    update(file: string, property: string, value: string, callback?: (error: Error) => void);
6
    remove(file: string, callback?: (error: Error) => void);
7
    
8
  }
9
 
10
}